home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Ham Radio 2000
/
Ham Radio 2000.iso
/
ham2000
/
antenna
/
yagiu112
/
cin.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-20
|
142b
|
11 lines
#include <math.h>
#include "yagi.h"
double Cin(double x)
{
double cix,temp,ans;
cisi(x,&cix,&temp);
ans=EULER+log(x)-cix;
return(ans);
}